home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / MetalComboBoxIcon.java < prev    next >
Text File  |  1998-06-30  |  2KB  |  70 lines

  1. /*
  2.  * @(#)MetalComboBoxIcon.java    1.4 98/02/06
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.metal;
  22.  
  23. import java.awt.*;
  24. import java.awt.event.*;
  25. import com.sun.java.swing.*;
  26. import com.sun.java.swing.plaf.*;
  27. import com.sun.java.swing.border.*;
  28. import java.io.Serializable;
  29. import com.sun.java.swing.plaf.basic.BasicComboBoxUI;
  30.  
  31.  
  32. /**
  33.  * This utility class draws the horizontal bars which indicate a MetalComboBox
  34.  *
  35.  * @see MetalComboBoxUI
  36.  * @version 1.4 02/06/98
  37.  * @author Tom Santos
  38.  */
  39. public class MetalComboBoxIcon implements Icon, Serializable {
  40.      
  41.     /**
  42.      * Paints the horizontal bars for the 
  43.      */
  44.     public void paintIcon(Component c, Graphics g, int x, int y){
  45.     int iconWidth = getIconWidth();
  46.  
  47.     g.translate( x, y );
  48.  
  49.     g.setColor( MetalLookAndFeel.getControlInfo() );
  50.     g.drawLine( 0, 0, iconWidth - 1, 0 );
  51.     g.drawLine( 1, 1, 1 + (iconWidth - 3), 1 );
  52.     g.drawLine( 2, 2, 2 + (iconWidth - 5), 2 );
  53.     g.drawLine( 3, 3, 3 + (iconWidth - 7), 3 );
  54.     g.drawLine( 4, 4, 4 + (iconWidth - 9), 4 );
  55.  
  56.     g.translate( -x, -y );
  57.     }
  58.     
  59.     /**
  60.      * stubbed to statify the interface.
  61.      */
  62.     public int getIconWidth() { return 10; }
  63.  
  64.     /**
  65.      * stubbed to statify the interface.
  66.      */
  67.     public int getIconHeight()  { return 5; }
  68.  
  69. }
  70.